home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / C for beginners.adf / source / bad_macro.c < prev    next >
C/C++ Source or Header  |  1978-01-17  |  212b  |  15 lines

  1. /*bad_macro.c 22.1 */
  2. #define QUADRAT(x) ((x)*(x))
  3.  
  4. main()
  5. {
  6.   /* Wrong use of a Macro */
  7.   int i = 0;
  8.   while(i <= 10)
  9.     {
  10.       printf("The Square of %d ", i);
  11.       printf("is %d\n", QUADRAT(i++));
  12.     }
  13. }
  14.  
  15.